home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 253 / Issue 253 - March 2009 - DPCS0309DVD.ISO / Toolkit / Internet / WinHTTrack / httrack-3.43.exe / {app} / src / htsbase.h < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-01  |  9.7 KB  |  379 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Basic definitions                                      */
  34. /*       Used in .c files for basic (malloc() ..) definitions   */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef HTS_BASICH
  39. #define HTS_BASICH
  40.  
  41. #ifdef __cplusplus
  42. extern "C" {
  43. #endif
  44.  
  45. #include "htsglobal.h"
  46. #include "htsstrings.h"
  47.  
  48. #include <string.h>
  49. #include <time.h>
  50.  
  51. #ifndef _WIN32
  52. #include <unistd.h>
  53. #endif
  54. #include <sys/types.h>
  55. #include <sys/stat.h>
  56.  
  57. #ifndef _WIN32
  58. #include <dlfcn.h>
  59. #endif
  60.  
  61. #include <errno.h>
  62.  
  63. #ifdef _WIN32
  64. #else
  65. #include <fcntl.h>
  66. #endif
  67. #include <assert.h>
  68.  
  69. /* GCC extension */
  70. #ifndef HTS_UNUSED
  71. #ifdef __GNUC__
  72. #define HTS_UNUSED __attribute__ ((unused))
  73. #define HTS_STATIC static __attribute__ ((unused))
  74. #else
  75. #define HTS_UNUSED
  76. #define HTS_STATIC static
  77. #endif
  78. #endif
  79.  
  80. #undef min
  81. #undef max
  82. #define min(a,b) ((a)>(b)?(b):(a))
  83. #define max(a,b) ((a)>(b)?(a):(b))
  84.  
  85. #ifndef _WIN32
  86. #undef Sleep
  87. #define min(a,b) ((a)>(b)?(b):(a))
  88. #define max(a,b) ((a)>(b)?(a):(b))
  89. #define Sleep(a) { if (((a)*1000)%1000000) usleep(((a)*1000)%1000000); if (((a)*1000)/1000000) sleep(((a)*1000)/1000000); }
  90. #endif
  91.  
  92. // teste ΘgalitΘ de 2 chars, case insensitive
  93. #define hichar(a) ((((a)>='a') && ((a)<='z')) ? ((a)-('a'-'A')) : (a))
  94. #define streql(a,b) (hichar(a)==hichar(b))
  95.  
  96. // caractΦre maj
  97. #define isUpperLetter(a) ( ((a) >= 'A') && ((a) <= 'Z') )
  98.  
  99.  
  100. /* Library internal definictions */
  101. #ifdef HTS_INTERNAL_BYTECODE
  102.  
  103.  
  104. // functions
  105. #ifdef _WIN32
  106. #define DynamicGet(handle, sym) GetProcAddress(handle, sym)
  107. #else
  108. #define DynamicGet(handle, sym) dlsym(handle, sym)
  109. #endif
  110.  
  111. // emergency log
  112. typedef void (*t_abortLog)(char* msg, char* file, int line);
  113. extern HTSEXT_API t_abortLog abortLog__;
  114. #define abortLog(a) abortLog__(a, __FILE__, __LINE__)
  115. #define _ ,
  116. #ifndef _WIN32_WCE
  117. #define abortLogFmt(a) do { \
  118.   FILE* fp = fopen("CRASH.TXT", "wb"); \
  119.   if (!fp) fp = fopen("/tmp/CRASH.TXT", "wb"); \
  120.   if (!fp) fp = fopen("C:\\CRASH.TXT", "wb"); \
  121.   if (!fp) fp = fopen("\\Temp\\CRASH.TXT", "wb"); \
  122.   if (!fp) fp = fopen("\\CRASH.TXT", "wb"); \
  123.   if (!fp) fp = fopen("CRASH.TXT", "wb"); \
  124.   if (fp) { \
  125.     fprintf(fp, "HTTrack " HTTRACK_VERSIONID " closed at '" __FILE__ "', line %d\r\n", __LINE__); \
  126.     fprintf(fp, "Reason:\r\n"); \
  127.     fprintf(fp, a); \
  128.     fprintf(fp, "\r\n"); \
  129.     fflush(fp); \
  130.     fclose(fp); \
  131.   } \
  132. } while(0)
  133. #else
  134. #define abortLogFmt(a) do { \
  135.   XCEShowMessageA("HTTrack " HTTRACK_VERSIONID " closed at '" __FILE__ "', line %d\r\nReason:\r\n%s\r\n", __LINE__, a); \
  136. } while(0)
  137. #endif
  138.  
  139. #define assertf(exp) do { \
  140.   if (! ( exp ) ) { \
  141.     abortLog("assert failed: " #exp); \
  142.     if (htsCallbackErr != NULL) { \
  143.       htsCallbackErr("assert failed: " #exp, __FILE__ , __LINE__ ); \
  144.     } \
  145.     assert(exp); \
  146.     abort(); \
  147.   } \
  148. } while(0)
  149. /* non-fatal assert */
  150. #define assertnf(exp) do { \
  151.   if (! ( exp ) ) { \
  152.     abortLog("assert failed: " #exp); \
  153.     if (htsCallbackErr != NULL) { \
  154.       htsCallbackErr("assert failed: " #exp, __FILE__ , __LINE__ ); \
  155.     } \
  156.   } \
  157. } while(0)
  158.  
  159. /* logging */
  160. typedef enum {
  161.     LOG_DEBUG,
  162.     LOG_INFO,
  163.     LOG_WARNING,
  164.     LOG_ERROR,
  165.     LOG_PANIC
  166. } HTS_LogType;
  167. #define HTS_LOG(OPT,TYPE) do { \
  168.   int last_errno = errno; \
  169.     switch(TYPE) { \
  170.     case LOG_DEBUG: \
  171.         fspc(OPT,(OPT)->log, "debug"); \
  172.         break; \
  173.     case LOG_INFO: \
  174.         fspc(OPT,(OPT)->log, "info"); \
  175.         break; \
  176.     case LOG_WARNING: \
  177.         fspc(OPT,(OPT)->log, "warning"); \
  178.         break; \
  179.     case LOG_ERROR: \
  180.         fspc(OPT,(OPT)->log, "error"); \
  181.         break; \
  182.     case LOG_PANIC: \
  183.         fspc(OPT,(OPT)->log, "panic"); \
  184.         break; \
  185.     } \
  186.   errno = last_errno; \
  187. } while(0)
  188.  
  189. /* regular malloc's() */
  190. #ifndef HTS_TRACE_MALLOC
  191. #define malloct(A)          malloc(A)
  192. #define calloct(A,B)        calloc((A), (B))
  193. #define freet(A)            do { assertnf((A) != NULL); if ((A) != NULL) { free(A); (A) = NULL; } } while(0)
  194. #define strdupt(A)          strdup(A)
  195. #define realloct(A,B)       ( ((A) != NULL) ? realloc((A), (B)) : malloc(B) )
  196. #define memcpybuff(A, B, N) memcpy((A), (B), (N))
  197. #else
  198. /* debug version */
  199. #define malloct(A)    hts_malloc(A)
  200. #define calloct(A,B)  hts_calloc(A,B)
  201. #define strdupt(A)    hts_strdup(A)
  202. #define freet(A)      do { hts_free(A); (A) = NULL; } while(0)
  203. #define realloct(A,B) hts_realloc(A,B)
  204. void  hts_freeall();
  205. void* hts_malloc    (size_t);
  206. void* hts_calloc(size_t,size_t);
  207. char* hts_strdup(char*);
  208. void* hts_xmalloc(size_t,size_t);
  209. void  hts_free      (void*);
  210. void* hts_realloc   (void*,size_t);
  211. mlink* hts_find(char* adr);
  212. /* protected memcpy */
  213. #define memcpybuff(A, B, N) do { \
  214.   mlink* lnk = hts_find((void*)(A)); \
  215.   if (lnk != NULL) { \
  216.     assertf(lnk != NULL); \
  217.     assertf( * ( (t_htsboundary*) ( ((char*) lnk->adr) - sizeof(htsboundary) ) ) == htsboundary ); \
  218.     assertf( * ( (t_htsboundary*) ( ((char*) lnk->adr) + lnk->len ) ) == htsboundary ); \
  219.     assertf( ( ((char*)(A)) + (N)) < (char*) (lnk->adr + lnk->len) ); \
  220.   } \
  221.   memcpy(A, B, N); \
  222. } while(0)
  223.  
  224. #endif
  225.  
  226. typedef void (* htsErrorCallback)(char* msg, char* file, int line);
  227. extern HTSEXT_API htsErrorCallback htsCallbackErr;
  228. extern HTSEXT_API int htsMemoryFastXfr;
  229.  
  230. /*
  231. */
  232.  
  233. #define stringdup()
  234.  
  235. #ifdef STRDEBUG
  236.  
  237. /* protected strcat, strncat and strcpy - definitely useful */
  238. #define strcatbuff(A, B) do { \
  239.   assertf( (A) != NULL ); \
  240.   if ( ! (B) ) { assertf( 0 ); } \
  241.   if (htsMemoryFastXfr) { \
  242.     if (sizeof(A) != sizeof(char*)) { \
  243.       (A)[sizeof(A) - 1] = '\0'; \
  244.     } \
  245.     strcat(A, B); \
  246.     if (sizeof(A) != sizeof(char*)) { \
  247.       assertf((A)[sizeof(A) - 1] == '\0'); \
  248.     } \
  249.   } else { \
  250.     unsigned int sz = (unsigned int) strlen(A); \
  251.     unsigned int szf = (unsigned int) strlen(B); \
  252.     if (sizeof(A) != sizeof(char*)) { \
  253.       assertf(sz + szf + 1 < sizeof(A)); \
  254.       if (szf > 0) { \
  255.         if (sz + szf + 1 < sizeof(A)) { \
  256.           memcpy((A) + sz, (B), szf + 1); \
  257.         } \
  258.       } \
  259.     } else if (szf > 0) { \
  260.       memcpybuff((A) + sz, (B), szf + 1); \
  261.     } \
  262.   } \
  263. } while(0)
  264. #define strncatbuff(A, B, N) do { \
  265.   assertf( (A) != NULL ); \
  266.   if ( ! (B) ) { assertf( 0 ); } \
  267.   if (htsMemoryFastXfr) { \
  268.     if (sizeof(A) != sizeof(char*)) { \
  269.       (A)[sizeof(A) - 1] = '\0'; \
  270.     } \
  271.     strncat(A, B, N); \
  272.     if (sizeof(A) != sizeof(char*)) { \
  273.       assertf((A)[sizeof(A) - 1] == '\0'); \
  274.     } \
  275.   } else { \
  276.     unsigned int sz = (unsigned int) strlen(A); \
  277.     unsigned int szf = (unsigned int) strlen(B); \
  278.     if (szf > (unsigned int) (N)) szf = (unsigned int) (N); \
  279.     if (sizeof(A) != sizeof(char*)) { \
  280.       assertf(sz + szf + 1 < sizeof(A)); \
  281.       if (szf > 0) { \
  282.         if (sz + szf + 1 < sizeof(A)) { \
  283.           memcpy((A) + sz, (B), szf); \
  284.           * ( (A) + sz + szf) = '\0'; \
  285.         } \
  286.       } \
  287.     } else if (szf > 0) { \
  288.       memcpybuff((A) + sz, (B), szf); \
  289.       * ( (A) + sz + szf) = '\0'; \
  290.     } \
  291.   } \
  292. } while(0)
  293. #define strcpybuff(A, B) do { \
  294.   assertf( (A) != NULL ); \
  295.   if ( ! (B) ) { assertf( 0 ); } \
  296.   if (htsMemoryFastXfr) { \
  297.     if (sizeof(A) != sizeof(char*)) { \
  298.       (A)[sizeof(A) - 1] = '\0'; \
  299.     } \
  300.     strcpy(A, B); \
  301.     if (sizeof(A) != sizeof(char*)) { \
  302.       assertf((A)[sizeof(A) - 1] == '\0'); \
  303.     } \
  304.   } else { \
  305.     unsigned int szf = (unsigned int) strlen(B); \
  306.     if (sizeof(A) != sizeof(char*)) { \
  307.       assertf(szf + 1 < sizeof(A)); \
  308.       if (szf > 0) { \
  309.         if (szf + 1 < sizeof(A)) { \
  310.           memcpy((A), (B), szf + 1); \
  311.         } else { \
  312.           * (A) = '\0'; \
  313.         } \
  314.       } else { \
  315.         * (A) = '\0'; \
  316.       } \
  317.     } else { \
  318.       memcpybuff((A), (B), szf + 1); \
  319.     } \
  320.   } \
  321. } while(0)
  322.  
  323. #else
  324.  
  325. #ifdef STRDEBUGFAST
  326.  
  327. /* protected strcat, strncat and strcpy - definitely useful */
  328. #define strcatbuff(A, B) do { \
  329.   assertf( (A) != NULL ); \
  330.   if ( ! (B) ) { assertf( 0 ); } \
  331.   if (sizeof(A) != sizeof(char*)) { \
  332.     (A)[sizeof(A) - 1] = '\0'; \
  333.   } \
  334.   strcat(A, B); \
  335.   if (sizeof(A) != sizeof(char*)) { \
  336.     assertf((A)[sizeof(A) - 1] == '\0'); \
  337.   } \
  338. } while(0)
  339. #define strncatbuff(A, B, N) do { \
  340.   assertf( (A) != NULL ); \
  341.   if ( ! (B) ) { assertf( 0 ); } \
  342.   if (sizeof(A) != sizeof(char*)) { \
  343.     (A)[sizeof(A) - 1] = '\0'; \
  344.   } \
  345.   strncat(A, B, N); \
  346.   if (sizeof(A) != sizeof(char*)) { \
  347.     assertf((A)[sizeof(A) - 1] == '\0'); \
  348.   } \
  349. } while(0)
  350. #define strcpybuff(A, B) do { \
  351.   assertf( (A) != NULL ); \
  352.   if ( ! (B) ) { assertf( 0 ); } \
  353.   if (sizeof(A) != sizeof(char*)) { \
  354.     (A)[sizeof(A) - 1] = '\0'; \
  355.   } \
  356.   strcpy(A, B); \
  357.   if (sizeof(A) != sizeof(char*)) { \
  358.     assertf((A)[sizeof(A) - 1] == '\0'); \
  359.   } \
  360. } while(0)
  361.  
  362. #else
  363.  
  364. #define strcatbuff strcat
  365. #define strncatbuff strncat
  366. #define strcpybuff strcpy
  367.  
  368. #endif
  369.  
  370. #endif
  371.  
  372. #endif
  373.  
  374. #ifdef __cplusplus
  375. }
  376. #endif
  377.  
  378. #endif
  379.